ButtonTitle

Overrides the default text labels on the standard buttons, such as Change and Save (Button_Default).

Value

Text. Specifies the text label to be displayed on the buttons.

Example

Container = CRM.GetBlock("container");
Container.DisplayButton(Button_Default) = true;
Container.ButtonTitle = "My Button";
CRM.AddContent(Container.Execute());
Response.Write(CRM.GetPage());

Sets the text label displayed on the standard buttons to My Button.